/* ---------- Root & Reset ---------- */
:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --secondary: #7209b7;
  --accent: #f72585;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --success: #4bb543;
  --error: #dc3545;
  --warning: #ffa502;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f7f9fb 0%, #e9efff 100%);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeDown 0.6s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: var(--secondary);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

/* FIX: Ensure buttons are visible on desktop */
.btn-primary, .btn-outline {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: block; /* Ensure it's always visible */
  opacity: 1; /* Ensure full visibility */
  visibility: visible; /* Ensure it's not hidden */
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 1001;
}

/* ---------- Hero / Page Header ---------- */
.page-header {
  text-align: center;
  padding: 60px 20px 30px;
  animation: fadeIn 1s ease;
}

.page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 10px auto;
}

/* ---------- Form Section ---------- */
.form-container {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 80px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
  outline: none;
}

/* ---------- Plan Cards ---------- */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.plan-card {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.plan-card:hover,
.plan-card.selected {
  border-color: var(--primary);
  background: rgba(67, 97, 238, 0.05);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
}

.plan-name {
  font-weight: 600;
  font-size: 1.2rem;
}

.plan-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.6rem;
  margin: 10px 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  margin-bottom: 8px;
}

.plan-features i {
  color: var(--success);
}

/* ---------- Submit Button ---------- */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 1rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column:hover h3::after {
    width: 80px;
}

.footer-column p {
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.3rem 0;
}

.footer-links a::before {
    content: '▶';
    margin-right: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.footer-links a:hover::before {
    color: white;
    transform: translateX(3px);
}

.footer-links a.nav-link.active {
    color: white;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
}

/* Additional links section */
.footer-column .footer-links:last-child {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column .footer-links:last-child a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-column .footer-links:last-child a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-column .footer-links:last-child a:hover {
    color: white;
}

.footer-column .footer-links:last-child a:hover::after {
    width: 100%;
}

/* Copyright section */
.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column:hover h3::after {
        width: 60px;
    }

    .footer-column p {
        margin: 0 auto 1.5rem;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links li:hover {
        transform: translateX(0);
    }

    .footer-column .footer-links:last-child {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-column h3 {
        font-size: 1.3rem;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-column .footer-links:last-child {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation for footer appearance */
footer {
    animation: slideUpFade 0.8s ease-out;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for the entire footer */
footer:hover .footer-column h3::after {
    background: rgba(255,255,255,1);
}

/* Glass morphism effect for modern look */
.footer-content {
    backdrop-filter: blur(10px);
}

/* Ensure footer stays at bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.footer-links a:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Loading animation for links */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: left 0.5s ease;
}

.footer-links a:hover::after {
    left: 100%;
}

/* ========== ENHANCED AUTH MODAL STYLES ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 30px;
  text-align: center;
  color: white;
  position: relative;
}

.modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-body {
  padding: 40px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 10;
  border: none;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Auth Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form .form-group {
  position: relative;
  margin-bottom: 5px;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control-auth {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-control-auth:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15);
  outline: none;
  transform: translateY(-2px);
}

.form-control-auth:hover {
  border-color: #c5cae9;
}

/* Password strength indicator */
.password-strength {
  height: 4px;
  background: var(--light-gray);
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-weak { background: var(--error); width: 33%; }
.strength-medium { background: var(--warning); width: 66%; }
.strength-strong { background: var(--success); width: 100%; }

/* Submit Button */
.btn-auth {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.btn-auth:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.btn-auth:active {
  transform: translateY(-1px);
}

.btn-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-auth:hover::before {
  left: 100%;
}

/* Auth Switch Links */
.auth-switch {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.auth-switch p {
  color: var(--gray);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.auth-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 6px;
}

.auth-link:hover {
  color: var(--secondary);
  background: rgba(67, 97, 238, 0.1);
  text-decoration: none;
}

.auth-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary);
  transition: all 0.3s ease;
}

.auth-link:hover::after {
  width: 100%;
  left: 0;
}

/* Social Login Styles */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.auth-divider span {
  padding: 0 15px;
}

.social-auth {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.btn-google {
  background: white;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}

.btn-google:hover {
  border-color: #db4437;
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-google i {
  color: #db4437;
  font-size: 1.2rem;
}

/* Form Validation Styles */
.form-control-auth.valid {
  border-color: var(--success);
}

.form-control-auth.invalid {
  border-color: var(--error);
}

.validation-message {
  font-size: 0.8rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.validation-message.valid {
  color: var(--success);
}

.validation-message.invalid {
  color: var(--error);
}

/* Loading Animation */
.btn-auth.loading {
  color: transparent;
  pointer-events: none;
}

.btn-auth.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Password Toggle */
.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(10px);
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.password-toggle:hover {
  color: var(--primary);
}

.password-input-container {
  position: relative;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--success);
  max-width: 400px;
}
.notification.error {
  border-left-color: var(--error);
}
.notification.success i {
  color: var(--success);
}
.notification.error i {
  color: var(--error);
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: 10px 20px;
  }

  .nav-actions {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1000;
  }

  .page-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 25px;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: 400px;
  }
  
  .modal-body {
    padding: 30px 25px;
  }
  
  .modal-header {
    padding: 25px 20px;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .form-control-auth {
    padding: 14px 16px;
  }
  
  .btn-auth {
    padding: 14px 25px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 5% auto;
    border-radius: 15px;
  }
  
  .modal-body {
    padding: 25px 20px;
  }
  
  .modal-header {
    padding: 20px 15px;
  }
  
  .close-btn {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* Pricing Section Styles */
 .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .page-subtitle {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 10px;
            font-weight: 800;
            background: linear-gradient(135deg, #1e293b, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .plan-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .plan-cards {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        
        .plan-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 0;
            width: 100%;
            max-width: 400px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .plan-card.starter {
            border-top: 6px solid #10b981;
        }
        
        .plan-card.premium {
            border-top: 6px solid #f59e0b;
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .plan-card.premium:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #10b981;
            color: white;
            padding: 8px 40px;
            font-size: 0.85rem;
            font-weight: 600;
            transform: rotate(45deg);
            box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
            z-index: 2;
        }
        
        .popular-badge {
            background: linear-gradient(135deg, #f59e0b, #eab308);
            box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
        }
        
        .plan-header {
            padding: 30px 30px 20px;
            text-align: center;
            position: relative;
        }
        
        .plan-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .starter .plan-icon {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }
        
        .premium .plan-icon {
            background: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }
        
        .plan-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .plan-price {
            margin-bottom: 10px;
        }
        
        .price-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1e293b;
        }
        
        .price-period {
            font-size: 1rem;
            color: #64748b;
        }
        
        .price-discount {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #94a3b8;
            font-size: 1.1rem;
        }
        
        .discount-badge {
            background: #10b981;
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .plan-features {
            list-style: none;
            padding: 0 30px;
            margin: 20px 0;
            flex-grow: 1;
        }
        
        .plan-features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .plan-features li i {
            margin-right: 12px;
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        .starter .plan-features li i.fa-check {
            color: #10b981;
        }
        
        .premium .plan-features li i.fa-check {
            color: #f59e0b;
        }
        
        .plan-features li i.fa-times {
            color: #ef4444;
        }
        
        .plan-description {
            font-size: 1rem;
            color: #475569;
            margin: 0 30px 15px;
            font-weight: 500;
            padding-top: 15px;
            border-top: 1px dashed #e2e8f0;
        }
        
        .plan-cta {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        .plan-select-btn {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .starter .plan-select-btn {
            background: #10b981;
        }
        
        .starter .plan-select-btn:hover {
            background: #0d9c6d;
        }
        
        .premium .plan-select-btn {
            background: linear-gradient(135deg, #f59e0b, #eab308);
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
        }
        
        .premium .plan-select-btn:hover {
            background: linear-gradient(135deg, #eab308, #d97706);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
        }
        
        .plan-value {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .exclusive-note {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 15px;
            margin: 0 30px 30px;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #92400e;
        }
        
        .annual-savings {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
            border-top: 6px solid #3b82f6;
        }
        
        .savings-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .savings-header i {
            color: #3b82f6;
            font-size: 1.8rem;
        }
        
        .savings-header h3 {
            font-size: 1.8rem;
            color: #1e293b;
            font-weight: 700;
        }
        
        .savings-badge {
            background: #f0f9ff;
            color: #3b82f6;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid #bfdbfe;
        }
        
        .savings-grid {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .savings-item {
            flex: 1;
            text-align: center;
            padding: 25px 20px;
            border-radius: 16px;
            background: #f8fafc;
            transition: all 0.3s ease;
        }
        
        .savings-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        .savings-plan {
            display: block;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .savings-price {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: #3b82f6;
            margin-bottom: 8px;
        }
        
        .savings-amount {
            display: block;
            font-size: 0.95rem;
            color: #10b981;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .plan-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .plan-card.premium {
                transform: none;
            }
            
            .plan-card.premium:hover {
                transform: translateY(-10px);
            }
            
            .savings-grid {
                flex-direction: column;
            }
            
            .page-subtitle {
                font-size: 2rem;
            }
        }

        .management-terms {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid #059669;
}

.management-terms h4 {
    color: #059669;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.management-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.management-terms li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.8rem;
    position: relative;
    padding-left: 1rem;
}

.management-terms li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.management-terms strong {
    color: #1e40af;
}

.professional-requirements {
    background: #fef3c7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid #d97706;
}

.professional-requirements h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.professional-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.professional-requirements li {
    padding: 0.25rem 0;
    color: #92400e;
    font-size: 0.8rem;
    position: relative;
    padding-left: 1rem;
}

.professional-requirements li::before {
    content: "•";
    color: #d97706;
    font-weight: bold;
    position: absolute;
    left: 0;
}